home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / Module Com22378772001.psc / frmfirstrun.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  2001-06-28  |  2.8 KB  |  97 lines

  1. VERSION 5.00
  2. Begin VB.Form frmfirstrun 
  3.    Caption         =   "Scrambler First Run Setup..."
  4.    ClientHeight    =   2880
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   8925
  8.    Icon            =   "frmfirstrun.frx":0000
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   2880
  11.    ScaleWidth      =   8925
  12.    StartUpPosition =   3  'Windows Default
  13.    Begin VB.CommandButton cmdStartWordListBuilder 
  14.       Caption         =   "Start Word List Builder"
  15.       Height          =   315
  16.       Left            =   4260
  17.       TabIndex        =   7
  18.       Top             =   2475
  19.       Width           =   4470
  20.    End
  21.    Begin VB.CommandButton cmdCreateKey 
  22.       Caption         =   "Create Key"
  23.       Height          =   300
  24.       Left            =   7350
  25.       TabIndex        =   5
  26.       Top             =   945
  27.       Width           =   1395
  28.    End
  29.    Begin VB.TextBox txtKey 
  30.       BackColor       =   &H80000000&
  31.       Height          =   285
  32.       Left            =   4305
  33.       Locked          =   -1  'True
  34.       TabIndex        =   3
  35.       Top             =   1305
  36.       Width           =   2985
  37.    End
  38.    Begin VB.TextBox txtKeyName 
  39.       Height          =   285
  40.       Left            =   4305
  41.       TabIndex        =   2
  42.       Top             =   960
  43.       Width           =   2985
  44.    End
  45.    Begin VB.Label Label4 
  46.       Caption         =   $"frmfirstrun.frx":0E42
  47.       Height          =   645
  48.       Left            =   165
  49.       TabIndex        =   6
  50.       Top             =   1785
  51.       Width           =   8655
  52.    End
  53.    Begin VB.Label Label3 
  54.       Caption         =   "This is your digital signature, Scrambler will store it."
  55.       Height          =   240
  56.       Left            =   645
  57.       TabIndex        =   4
  58.       Top             =   1350
  59.       Width           =   3570
  60.    End
  61.    Begin VB.Label Label2 
  62.       Caption         =   "Your Name as you want it to appear in digital signature."
  63.       Height          =   225
  64.       Left            =   315
  65.       TabIndex        =   1
  66.       Top             =   990
  67.       Width           =   3975
  68.    End
  69.    Begin VB.Label Label1 
  70.       Caption         =   $"frmfirstrun.frx":0FAE
  71.       Height          =   840
  72.       Left            =   75
  73.       TabIndex        =   0
  74.       Top             =   60
  75.       Width           =   8790
  76.    End
  77. Attribute VB_Name = "frmfirstrun"
  78. Attribute VB_GlobalNameSpace = False
  79. Attribute VB_Creatable = False
  80. Attribute VB_PredeclaredId = True
  81. Attribute VB_Exposed = False
  82. Option Explicit
  83. Private Sub cmdCreateKey_Click()
  84. txtKey.Text = GenKey(txtKeyName.Text)
  85. With tbsettings
  86.     .MoveFirst
  87.     .Edit
  88.     !Name = txtKeyName.Text
  89.     !digitalkey = txtKey.Text
  90.     .Update
  91. End With
  92. End Sub
  93. Private Sub cmdStartWordListBuilder_Click()
  94. Unload Me
  95. frmbuildwordlist.Show
  96. End Sub
  97.